class BUCKET{E} < $BUCKET{E,BUCKET{E}}
****
Mainly this class adds an item to NEXT and gives some handy constructors.


Flattened version is here

Ancestors
$BUCKET{_,_} $NEXT{_} NEXT{_}



Public


Readable Attributes
attr item: E;

Writable Attributes
attr item: E;

Features
copy_list: SAME
**** Returns a copy of self and all following links. The objects will not be 'copy'ed. Self may be void.
create(e:E): SAME
**** Create a link containing e.
create(e:E,n:SAME): SAME
**** Create a link containig e and prepending the link n. n may be void.

Iters
list!: SAME
**** Yields all subsequent elements in the list.

The Sather Home Page